""" Created on Wed Apr 6 00:11:36 2022
@author: 胡雯倩 """ #打开作业1素材,读取到的保存到contents中 f=open(r"D:\python课 吴老师\作业一素材.txt","r",encoding="UTF-8") contents = f.read() print(contents)
#利用正则表达式 页脚不考虑 import re f1 = re.compile('.?(?=\s\n顺.*?LTD.)',re.DOTALL) f2 = f1.findall(contents) print(f2)
#把读取到的内容按照句子划分 lines = contents.splitlines()
#找到倒数第三句 lastline3=lines[-3]
#确定倒数第三句的长度 print(len(lastline3))
#把符号换成空格 lastline3 = lastline3.replace(".","")
#第三行词语 words = lastline3.split(" ")
#找到最后一个单词 word = words[-1]
#最后一个单词的长度 print(len(word))